home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / string / RCS / strcat.c,v < prev    next >
Text File  |  1989-03-22  |  2KB  |  94 lines

  1. head     1.2;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.2
  10. date     89.03.22.16.06.35;  author rab;  state Exp;
  11. branches ;
  12. next     1.1;
  13.  
  14. 1.1
  15. date     88.04.25.13.25.41;  author ouster;  state Exp;
  16. branches ;
  17. next     ;
  18.  
  19.  
  20. desc
  21. @@
  22.  
  23.  
  24. 1.2
  25. log
  26. @*** empty log message ***
  27. @
  28. text
  29. @/* 
  30.  * strcat.c --
  31.  *
  32.  *    Source code for the "strcat" library routine.
  33.  *
  34.  * Copyright 1988 Regents of the University of California
  35.  * Permission to use, copy, modify, and distribute this
  36.  * software and its documentation for any purpose and without
  37.  * fee is hereby granted, provided that the above copyright
  38.  * notice appear in all copies.  The University of California
  39.  * makes no representations about the suitability of this
  40.  * software for any purpose.  It is provided "as is" without
  41.  * express or implied warranty.
  42.  */
  43.  
  44. #ifndef lint
  45. static char rcsid[] = "$Header: /sprite/src/lib/c/string/RCS/strcat.c,v 1.1 88/04/25 13:25:41 ouster Exp Locker: rab $ SPRITE (Berkeley)";
  46. #endif not lint
  47.  
  48. #include <string.h>
  49.  
  50. /*
  51.  *----------------------------------------------------------------------
  52.  *
  53.  * strcat --
  54.  *
  55.  *    Copy one string (src) onto the end of another (dst).
  56.  *
  57.  * Results:
  58.  *    The return value is a pointer to the destination string, dst.
  59.  *
  60.  * Side effects:
  61.  *    None.
  62.  *
  63.  *----------------------------------------------------------------------
  64.  */
  65.  
  66. char *
  67. strcat(dst, src)
  68.     register char *src;        /* Place from which to copy. */
  69.     char *dst;            /* Destination string:  *srcPtr gets added
  70.                  * onto the end of this. */
  71. {
  72.     register char *copy = dst;
  73.  
  74.     do {
  75.     } while (*copy++ != 0);
  76.     copy -= 1;
  77.     do {
  78.     } while ((*copy++ = *src++) != 0);
  79.     return dst;
  80. }
  81. @
  82.  
  83.  
  84. 1.1
  85. log
  86. @Initial revision
  87. @
  88. text
  89. @d17 1
  90. a17 1
  91. static char rcsid[] = "$Header: proto.c,v 1.2 88/03/11 08:39:08 ouster Exp $ SPRITE (Berkeley)";
  92. d19 2
  93. @
  94.